home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / Demos / Bombardier_PC / INDEX.DIR / 00059_Script_59 < prev    next >
Text File  |  1999-03-07  |  550b  |  28 lines

  1.  
  2.  
  3.  
  4. on mouseDown
  5.   global gSubList, gCurrentSelection, gMouseLock, gTimerLock, gMouseLatency
  6.   
  7.   if gMouseLock then
  8.     put the timer + gMouseLatency into gTimerLock
  9.     
  10.     put the mouseLine into var
  11.     if var > 0 and var < 200 then
  12.       put 0 into gMouseLock
  13.       hilite line var of cast gSubList
  14.       put gSubList&"OFF" into offScreenList
  15.       hilite line var of cast offScreenList
  16.       
  17.       put the selection into gCurrentSelection
  18.       tell the stage to hopTo gCurrentSelection
  19.     end if
  20.   end if
  21. end
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.